from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

67279

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 1.7 (18 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2024-04-30
Business-ISBN - 3.9.0
Ebuild name:

dev-perl/Business-ISBN-3.9.0

Description

Work with ISBN as objects

Added to portage

2024-04-30

Business-ISBN-Data - 20240426.1.0
Ebuild name:

dev-perl/Business-ISBN-Data-20240426.1.0

Description

Data pack for Business

Added to portage

2024-04-30

Business-ISMN - 1.204.0
Ebuild name:

dev-perl/Business-ISMN-1.204.0

Description

International Standard Music Numbers

Added to portage

2024-04-30

Business-ISSN - 1.6.0
Ebuild name:

dev-perl/Business-ISSN-1.6.0

Description

Object and functions to work with International Standard Serial Number

Added to portage

2024-04-30

CGI-Simple - 1.281.0
Ebuild name:

dev-perl/CGI-Simple-1.281.0

Description

A Simple totally OO CGI interface that is CGI.pm compliant

Added to portage

2024-04-30

CPAN-Changes - 0.500.3
Ebuild name:

dev-perl/CPAN-Changes-0.500.3

Description

Read and write Changes files

Added to portage

2024-04-30

CPAN-Meta-Check - 0.18.0
Ebuild name:

dev-perl/CPAN-Meta-Check-0.18.0

Description

Verify requirements in a CPAN object

Added to portage

2024-04-30

CPAN-Mini - 1.111.17
Ebuild name:

dev-perl/CPAN-Mini-1.111.17

Description

Create a minimal mirror of CPAN

Added to portage

2024-04-30

CPAN-Perl-Releases - 5.202.404.270
Ebuild name:

dev-perl/CPAN-Perl-Releases-5.202.404.270

Description

Mapping Perl releases on CPAN to the location of the tarb

Added to portage

2024-04-30

Carp-Assert-More - 2.4.0
Ebuild name:

dev-perl/Carp-Assert-More-2.4.0

Description

Convenience assertions for common situations

Added to portage

2024-04-30

Compress-Raw-Lzma - 2.212.0
Ebuild name:

dev-perl/Compress-Raw-Lzma-2.212.0

Description

Perl interface for reading and writing lzma, lzip, and xz files/

Added to portage

2024-04-30

DBD-Pg - 3.18.0
Ebuild name:

dev-perl/DBD-Pg-3.18.0

Description

PostgreSQL database driver for the DBI module

Added to portage

2024-04-30

DBD-mysql - 5.4.0
Ebuild name:

dev-perl/DBD-mysql-5.4.0

Description

MySQL driver for the Perl5 Database Interface (DBI)

Added to portage

2024-04-30

Data-Printer - 1.2.1
Ebuild name:

dev-perl/Data-Printer-1.2.1

Description

Colored and full-featured pretty print of Perl data structures and obje

Added to portage

2024-04-30

Data-UUID - 1.227.0
Ebuild name:

dev-perl/Data-UUID-1.227.0

Description

Generate Globally/Universally Unique Identifiers (GUIDs/UUIDs)

Added to portage

2024-04-30

Email-Sender - 2.601.0
Ebuild name:

dev-perl/Email-Sender-2.601.0

Description

A library for sending email

Added to portage

2024-04-30

Email-Valid - 1.204.0
Ebuild name:

dev-perl/Email-Valid-1.204.0

Description

Check validity of Internet email addresses

Added to portage

2024-04-30

alectryon - 1.4.0-r2
Ebuild name:

sci-mathematics/alectryon-1.4.0-r2

Description

Toolkit for literate programming in Coq

Added to portage

2024-04-30

awscli - 1.32.94
Ebuild name:

app-admin/awscli-1.32.94

Description

Universal Command Line Environment for AWS

Added to portage

2024-04-30

bash - 5.1_p16-r10
Ebuild name:

app-shells/bash-5.1_p16-r10

Description

The standard GNU Bourne again shell

Added to portage

2024-04-30

bash - 5.2_p26-r3
Ebuild name:

app-shells/bash-5.2_p26-r3

Description

The standard GNU Bourne again shell

Added to portage

2024-04-30

bash - 5.3_alpha-r2
Ebuild name:

app-shells/bash-5.3_alpha-r2

Description

The standard GNU Bourne again shell

Added to portage

2024-04-30

bpftool - 6.8.2
Ebuild name:

dev-util/bpftool-6.8.2

Description

Tool for inspection and simple manipulation of eBPF programs and maps

Added to portage

2024-04-30

calamares - 3.3.6
Ebuild name:

app-admin/calamares-3.3.6

Description

Distribution-independent installer framework

Added to portage

2024-04-30

ccls - 0.20240202
Ebuild name:

dev-util/ccls-0.20240202

Description

C/C++/ObjC language server

Added to portage

2024-04-30

discord - 0.0.52
Ebuild name:

net-im/discord-0.0.52

Description

All-in-one voice and text chat for gamers

Added to portage

2024-04-30

dist-kernel - 6.1.89
Ebuild name:

virtual/dist-kernel-6.1.89

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-30

firefox - 125.0.3
Ebuild name:

www-client/firefox-125.0.3

Description

Firefox Web Browser

Added to portage

2024-04-30

gentoo-kernel - 6.1.89
Ebuild name:

sys-kernel/gentoo-kernel-6.1.89

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-30

gentoo-kernel-bin - 6.1.89
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.89

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-30

git - 2.45.0
Ebuild name:

dev-vcs/git-2.45.0

Description

Stupid content tracker distributed VCS designed for speed and efficiency

Added to portage

2024-04-30

inkscape - 1.3.2-r2
Ebuild name:

media-gfx/inkscape-1.3.2-r2

Description

SVG based generic vector-drawing program

Added to portage

2024-04-30

libpwquality - 1.4.5-r2
Ebuild name:

dev-libs/libpwquality-1.4.5-r2

Description

Library for password quality checking and generating random password

Added to portage

2024-04-30

melange - 0.6.11
Ebuild name:

dev-build/melange-0.6.11

Description

Build APK packages from source code using declarative pipelines

Added to portage

2024-04-30

ocaml - 4.14.2
Ebuild name:

dev-lang/ocaml-4.14.2

Description

Programming language supporting functional, imperative & object-oriented

Added to portage

2024-04-30

racket-mode - 9999
Ebuild name:

app-emacs/racket-mode-9999

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile, and mor

Added to portage

2024-04-30

rainbow-delimiters - 2.1.5
Ebuild name:

app-emacs/rainbow-delimiters-2.1.5

Description

Highlight nested parentheses, brackets, and braces according to

Added to portage

2024-04-30

supervisor - 4.2.5-r1
Ebuild name:

app-admin/supervisor-4.2.5-r1

Description

A system for controlling process state under UNIX

Added to portage

2024-04-30

torrentinfo - 1.8.7
Ebuild name:

net-p2p/torrentinfo-1.8.7

Description

A torrent file parser

Added to portage

2024-04-30

tuba - 0.7.2
Ebuild name:

net-misc/tuba-0.7.2

Description

Browse the Fediverse (GTK client)

Added to portage

2024-04-30

ubuntu-keyring - 2021.03.26
Ebuild name:

app-crypt/ubuntu-keyring-2021.03.26

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-30

ubuntu-keyring - 2023.11.28.1
Ebuild name:

app-crypt/ubuntu-keyring-2023.11.28.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-30

vanilla-kernel - 6.1.89
Ebuild name:

sys-kernel/vanilla-kernel-6.1.89

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-30

veracrypt - 1.25.9
Ebuild name:

app-crypt/veracrypt-1.25.9

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2024-04-30

veracrypt - 1.26.7
Ebuild name:

app-crypt/veracrypt-1.26.7

Description

Disk encryption with strong security based on TrueCrypt

Added to portage

2024-04-30

wayland-protocols - 1.36
Ebuild name:

dev-libs/wayland-protocols-1.36

Description

Wayland protocol files

Added to portage

2024-04-30

xca - 2.5.0
Ebuild name:

app-crypt/xca-2.5.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2024-04-30

xca - 2.6.0
Ebuild name:

app-crypt/xca-2.6.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2024-04-30

xor-analyze - 0.5-r1
Ebuild name:

app-crypt/xor-analyze-0.5-r1

Description

Program for cryptanalyzing xor 'encryption' with variable key length

Added to portage

2024-04-30

yubihsm-connector - 3.0.4
Ebuild name:

app-crypt/yubihsm-connector-3.0.4

Description

Server to expose YubiHSM 2 to network

Added to portage

2024-04-30

2024-04-29
Crypt-SMIME - 0.300.0
Ebuild name:

dev-perl/Crypt-SMIME-0.300.0

Description

S/MIME message signing, verification, encryption and decryption

Added to portage

2024-04-29

Faker - 24.14.1
Ebuild name:

dev-python/Faker-24.14.1

Description

A Python package that generates fake data for you

Added to portage

2024-04-29

WWW-Mechanize - 2.180.0
Ebuild name:

dev-perl/WWW-Mechanize-2.180.0

Description

Handy web browsing in a Perl object

Added to portage

2024-04-29

XML-LibXML - 2.21.0
Ebuild name:

dev-perl/XML-LibXML-2.21.0

Description

Perl binding for libxml2

Added to portage

2024-04-29

XML-Parser - 2.470.0
Ebuild name:

dev-perl/XML-Parser-2.470.0

Description

A perl module for parsing XML documents

Added to portage

2024-04-29

asahi-sources - 6.8.6_p4
Ebuild name:

sys-kernel/asahi-sources-6.8.6_p4

Description

Asahi Linux kernel sources

Added to portage

2024-04-29

blinker - 1.8.1
Ebuild name:

dev-python/blinker-1.8.1

Description

Fast, simple object-to-object and broadcast signaling

Added to portage

2024-04-29

bsnes-jg - 1.2.0
Ebuild name:

games-emulation/bsnes-jg-1.2.0

Description

Jolly Good Fork of bsnes

Added to portage

2024-04-29

evolution - 3.52.1
Ebuild name:

mail-client/evolution-3.52.1

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2024-04-29

evolution-data-server - 3.52.1
Ebuild name:

gnome-extra/evolution-data-server-3.52.1

Description

Evolution groupware backend

Added to portage

2024-04-29

evolution-ews - 3.52.1
Ebuild name:

gnome-extra/evolution-ews-3.52.1

Description

Evolution module for connecting to Microsoft Exchange Web Services

Added to portage

2024-04-29

fail2ban - 1.1.0
Ebuild name:

net-analyzer/fail2ban-1.1.0

Description

Scans log files and bans IPs that show malicious signs

Added to portage

2024-04-29

firefox-bin - 125.0.3
Ebuild name:

www-client/firefox-bin-125.0.3

Description

Firefox Web Browser

Added to portage

2024-04-29

gambatte-jg - 0.6.0
Ebuild name:

games-emulation/gambatte-jg-0.6.0

Description

Jolly Good Fork of Gambatte

Added to portage

2024-04-29

gcc - 15.0.0_pre20240428
Ebuild name:

sys-devel/gcc-15.0.0_pre20240428

Description

The GNU Compiler Collection

Added to portage

2024-04-29

gentle - 1.0.0
Ebuild name:

app-portage/gentle-1.0.0

Description

Gentoo Lazy Entry - a metadata.xml generator

Added to portage

2024-04-29

gentoo-sources - 6.1.89
Ebuild name:

sys-kernel/gentoo-sources-6.1.89

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-29

git-sources - 6.9_rc6
Ebuild name:

sys-kernel/git-sources-6.9_rc6

Description

The very latest -git version of the Linux kernel

Added to portage

2024-04-29

gmult - 14.0
Ebuild name:

games-kids/gmult-14.0

Description

Multiplication Puzzle emulates the multiplication game found in Emacs

Added to portage

2024-04-29

gnome-calendar - 46.1
Ebuild name:

gnome-extra/gnome-calendar-46.1

Description

Manage your calendars with simple and modern interface

Added to portage

2024-04-29

gnome-contacts - 46.0
Ebuild name:

gnome-extra/gnome-contacts-46.0

Description

GNOME contact management application

Added to portage

2024-04-29

gnome-control-center - 45.4
Ebuild name:

gnome-base/gnome-control-center-45.4

Description

GNOME's main interface to configure various aspects of the des

Added to portage

2024-04-29

grep - 3.11-r1
Ebuild name:

sys-apps/grep-3.11-r1

Description

GNU regular expression matcher

Added to portage

2024-04-29

gtk - 4.14.3
Ebuild name:

gui-libs/gtk-4.14.3

Description

GTK is a multi-platform toolkit for creating graphical user interfaces

Added to portage

2024-04-29

hugo - 0.125.4
Ebuild name:

www-apps/hugo-0.125.4

Description

Fast static HTML and CSS website generator

Added to portage

2024-04-29

jbuilder - 2.12.0
Ebuild name:

dev-ruby/jbuilder-2.12.0

Description

Create JSON structures via a Builder-style DSL

Added to portage

2024-04-29

jgrf - 1.1.0
Ebuild name:

games-emulation/jgrf-1.1.0

Description

The Jolly Good Reference Frontend

Added to portage

2024-04-29

lcms - 2.16-r1
Ebuild name:

media-libs/lcms-2.16-r1

Description

A lightweight, speed optimized color management engine

Added to portage

2024-04-29

libadwaita - 1.5.0
Ebuild name:

gui-libs/libadwaita-1.5.0

Description

Building blocks for modern GNOME applications

Added to portage

2024-04-29

libcap-ng - 0.8.5
Ebuild name:

sys-libs/libcap-ng-0.8.5

Description

POSIX 1003.1e capabilities

Added to portage

2024-04-29

liblc3 - 1.1.1
Ebuild name:

media-sound/liblc3-1.1.1

Description

LC3 is an efficient low latency audio codec

Added to portage

2024-04-29

libmicrohttpd - 1.0.1
Ebuild name:

net-libs/libmicrohttpd-1.0.1

Description

Small C library to run an HTTP server as part of another application

Added to portage

2024-04-29

lidarr-bin - 2.3.1.4171
Ebuild name:

www-apps/lidarr-bin-2.3.1.4171

Description

Looks and smells like Sonarr but made for music

Added to portage

2024-04-29

line-profiler - 4.1.3
Ebuild name:

dev-python/line-profiler-4.1.3

Description

Line-by-line profiler

Added to portage

2024-04-29

linksys-tftp - 1.2.1-r4
Ebuild name:

net-ftp/linksys-tftp-1.2.1-r4

Description

TFTP client suitable for uploading to the Linksys WRT54G Wireless Rou

Added to portage

2024-04-29

lxgw-wenkai - 1.330
Ebuild name:

media-fonts/lxgw-wenkai-1.330

Description

An open-source Chinese font derived from Fontworks' Klee One

Added to portage

2024-04-29

mattermost-desktop-bin - 5.8.0_rc2
Ebuild name:

net-im/mattermost-desktop-bin-5.8.0_rc2

Description

Mattermost Desktop application

Added to portage

2024-04-29

mednafen-jg - 1.32.1
Ebuild name:

games-emulation/mednafen-jg-1.32.1

Description

Jolly Good Port of Mednafen

Added to portage

2024-04-29

myst-parser - 3.0.1
Ebuild name:

dev-python/myst-parser-3.0.1

Description

Extended commonmark compliant parser, with bridges to Sphinx

Added to portage

2024-04-29

ncurses-compat - 6.4_p20240414
Ebuild name:

sys-libs/ncurses-compat-6.4_p20240414

Description

Console display library (ABI version 5)

Added to portage

2024-04-29

nestopia-jg - 1.52.1
Ebuild name:

games-emulation/nestopia-jg-1.52.1

Description

Jolly Good Fork of Nestopia

Added to portage

2024-04-29

nextcloud - 29.0.0
Ebuild name:

www-apps/nextcloud-29.0.0

Description

Personal cloud that runs on your own server

Added to portage

2024-04-29

pedro - 1.14
Ebuild name:

net-misc/pedro-1.14

Description

Pedro is a subscription/notification communications system

Added to portage

2024-04-29

prowlarr-bin - 1.17.0.4448
Ebuild name:

www-apps/prowlarr-bin-1.17.0.4448

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2024-04-29

pyqtgraph - 0.13.7
Ebuild name:

dev-python/pyqtgraph-0.13.7

Description

A pure-python graphics and GUI library built on PyQt and numpy

Added to portage

2024-04-29

pytest-xdist - 3.6.1
Ebuild name:

dev-python/pytest-xdist-3.6.1

Description

Distributed testing and loop-on-failing modes

Added to portage

2024-04-29

qemu - 7.2.11
Ebuild name:

app-emulation/qemu-7.2.11

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

qemu - 8.2.3
Ebuild name:

app-emulation/qemu-8.2.3

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

qemu - 9.0.0
Ebuild name:

app-emulation/qemu-9.0.0

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2024-04-29

radarr-bin - 5.5.1.8747
Ebuild name:

www-apps/radarr-bin-5.5.1.8747

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2024-04-29

rapidyaml - 0.6.0
Ebuild name:

dev-cpp/rapidyaml-0.6.0

Description

Library to parse and emit YAML, and do it fast

Added to portage

2024-04-29

readarr-bin - 0.3.25.2515
Ebuild name:

www-apps/readarr-bin-0.3.25.2515

Description

An ebook and audiobook collection manager for Usenet and BitTorren

Added to portage

2024-04-29

regex - 2024.4.28
Ebuild name:

dev-python/regex-2024.4.28

Description

Alternative regular expression module to replace re

Added to portage

2024-04-29

sequoia-chameleon-gnupg - 0.8.0
Ebuild name:

app-crypt/sequoia-chameleon-gnupg-0.8.0

Description

Sequoia's reimplementation of the GnuPG interface

Added to portage

2024-04-29

sequoia-sq - 0.35.0
Ebuild name:

app-crypt/sequoia-sq-0.35.0

Description

CLI of the Sequoia OpenPGP implementation

Added to portage

2024-04-29

sequoia-sqv - 1.2.1
Ebuild name:

app-crypt/sequoia-sqv-1.2.1

Description

A simple OpenPGP signature verification program

Added to portage

2024-04-29

signal-cli-bin - 0.13.1-r1
Ebuild name:

net-im/signal-cli-bin-0.13.1-r1

Description

Send and receive messages of Signal Messenger over a command line i

Added to portage

2024-04-29

signal-cli-bin - 0.13.2-r1
Ebuild name:

net-im/signal-cli-bin-0.13.2-r1

Description

Send and receive messages of Signal Messenger over a command line i

Added to portage

2024-04-29

slime - 2.30
Ebuild name:

app-emacs/slime-2.30

Description

SLIME, the Superior Lisp Interaction Mode (Extended)

Added to portage

2024-04-29

systemd - 255.5-r1
Ebuild name:

sys-apps/systemd-255.5-r1

Description

System and service manager for Linux

Added to portage

2024-04-29

ubuntu-keyring - 2020.02.11.2
Ebuild name:

app-crypt/ubuntu-keyring-2020.02.11.2

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-29

ubuntu-keyring - 2020.06.17.1
Ebuild name:

app-crypt/ubuntu-keyring-2020.06.17.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2024-04-29

vanilla-sources - 6.1.89
Ebuild name:

sys-kernel/vanilla-sources-6.1.89

Description

Full sources for the Linux kernel

Added to portage

2024-04-29

vendor-reset - 0.1.1_pre20221205-r2
Ebuild name:

app-emulation/vendor-reset-0.1.1_pre20221205-r2

Description

Linux kernel vendor specific hardware reset module

Added to portage

2024-04-29

xconsole - 1.1.0
Ebuild name:

x11-apps/xconsole-1.1.0

Description

monitor system console messages with X

Added to portage

2024-04-29

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 39.4 ms